* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 92%;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-style: normal;
    background-color: white;
}


a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #a2a2a2; /* oder eine Farbe, die dir gefällt */
    text-decoration: none; /* bleibt ohne Unterstrich */
}

header {
    width: 100vw;
    height: 60px;
    background-color: white;
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid black;
    padding: 0 30px;
}

/* Navigation in der Mitte */
.nav-center {
    display: flex;
    justify-content: center;
    gap: 30%;
    flex-grow: 1;
}

/* Einheitliche Navigation */
.nav-item {
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #555;
}

/* Main Content - hat links eine große Margin */
main {
    margin-left: 600px; /* Platz für die Sidebar */
    padding: 80px 0px 80px 20px; /* Abstand zum Header */
    grid-template-columns: 50% 65%; /* Zwei Spalten */ 
    gap: 40px;
    grid-template-rows: auto auto; /* Erst Inhalt, dann Bild */
    }

.gallery-container {
    padding: 80px 20px;
    text-align: center;
    margin-left: 0; /* Entfernt die Margin der Sidebar */
    width: 100%; /* Sorgt dafür, dass es sich über die volle Breite erstreckt */
}

@media only screen and (max-width: 460px) {
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr); /* 8 Spalten */
        gap: 50px;
        width: 100%;
        max-width: 100%;
        grid-auto-rows: auto; /* Sorgt dafür, dass die Reihen automatisch in die Höhe wachsen */
    }
         
}

@media only screen and (min-width: 461px) {
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 8 Spalten */
        gap: 50px;
        width: 100%;
        max-width: 100%;
        grid-auto-rows: auto; /* Sorgt dafür, dass die Reihen automatisch in die Höhe wachsen */
    }
         
}

@media only screen and (min-width: 750px) {
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 8 Spalten */
        gap: 50px;
        width: 100%;
        max-width: 100%;
        grid-auto-rows: auto; /* Sorgt dafür, dass die Reihen automatisch in die Höhe wachsen */
    }
         
}

@media only screen and (min-width: 1200px) {
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 8 Spalten */
        gap: 50px;
        width: 100%;
        max-width: 100%;
        grid-auto-rows: auto; /* Sorgt dafür, dass die Reihen automatisch in die Höhe wachsen */
    }
         
}


.gallery-grid img {
    width: 100%;
    height: 320px; /* oder eine andere feste Höhe, z. B. 250px */
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}


.gallery-grid figure {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.gallery-grid figcaption {
    font-size: 90%;
    color: black;
    text-align: right;
}